From: Brion Vibber Date: Thu, 1 Dec 2005 08:24:49 +0000 (+0000) Subject: fix typo in var name X-Git-Tag: 1.6.0~1089 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=cb32fc167e4924be82d9b4dfdc14790426727db6;p=lhc%2Fweb%2Fwiklou.git fix typo in var name --- diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 84b27bfaa5..a0e77e4951 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -315,7 +315,7 @@ class OutputPage { function parse( $text, $linestart = true ) { global $wgParser, $wgTitle; $parserOutput = $wgParser->parse( $text, $wgTitle, $this->mParserOptions, - $linestart, true, $this->mRevision ); + $linestart, true, $this->mRevisionId ); return $parserOutput->getText(); }